------------------
VBA syntax BASICS (I)
------------------
Data Type"Data Type" refers to how to store data in the memory.
(1) Boolean
Logical Data. It can be either true or false. The storage space occupies 2 bytes. The value range is true or false. The default value is false.
(2) byte
It can only represent positive numbers. 1-byte storage space. The value range is 0-255. The default value is 0.
(3) Cur
variable.3. Keywords in VBA cannot be used as variables.4. Variable names cannot contain special types of declarative characters (#, $, %, , or !).5. The variable name can contain a maximum of 254 characters.(For details about VBA naming rules, see a series of articles later)------------------Declare VariablesIts syntax is:Dim Or: Private Or: Public Multiple var
VBA language basics
Id 1I. DefinitionAn identifier is a symbol that identifies the unit of a variable, constant, process, function, class, and other languages. It can be used to reference variables, constants, processes, functions, and classes.Ii. Naming rules1) It is a combination of letters, numbers, and underscores (_), such as a987b_23abc.2) The character length is less than 40 (excel2002 and later Chinese versions, can use Chinese characters an
--------------------
VBA syntax BASICS (II)--------------------
Basic statement
1. Control Program Flow Statement
(1) GOTO statement
This statement transfers the executed program to the statement instruction where the specified tag is located, but cannot be transferred to an instruction outside the process. For example, when an error occurs during error capture, the program is transferred to the tag for e
articles)2. Loop statementsLoop means repeated execution of a code segment. In VBA, there are multiple statement structures that can constitute loops.(1)... Next LoopThe syntax is as follows:For [Command][Exit For][Command]Next [Counter]From the beginning to the end, execute the command block between For and Next repeatedly, unless the Exit For statement is encountered, it will jump out of the loop in adva
Option Explicit' Erase dataPrivate Sub CommandButton1_Click ()Dim Qknum as Integer' Select Yes or no to confirm delete data' In dialog box type 16+4:16 refers to the icon type is the stop icon, 4 refers to the button that appears is the "no" buttonIf (MsgBox ("OK to delete all data?", vbcritical + 16 + 4, "warm tip") = vbno) ThenExit SubEnd If' The data to be emptied starts the lineQknum = Sheet1.UsedRange.EntireRow.CountIf qknum > 5 ThenSheet1.range ("6:" CStr (Qknum)). Entirerow.deleteEnd IfE
VBA (Visual Basic for Application ):
O 'Reilly VB VBA concise tutorial
OfficeVBAProgrammingCollection of manuals (CHM)
Microsoft Office VBA Language Reference
Microsoft Office 2007 system VBA programming
Office VBA programming skills
Start today with "Blue Fantasy" video learning VBAThe macro is actually the operation stepRecorded macros are automatically generated by VBAIn VB, you can write your ownYou can specify a macro by using the form button1. VBA Objects' 1, workbooks' Workbooks represents the workbook collection, all workbooks, Workbooks (n), which represents the nth workbook that has been opened' Workbooks ("Workbook name")' ActiveWorkbook the workbook that is being manip
The code below can be used to delete the module which houses the Code. In other words, it deletes itself after running once.
You will have to goTools>Macro>Security-Trusted publishersAnd check trust accessVisual Basic EditorBefore running the code. Change"Module1"To suit.
Sub deletethismodule ()
Dim vbcom as object
Msgbox "hi, I will delete myself"
Set vbcom = application. VBE. activevbproject. vbcomponents
Vbcom. Remove vbcomponent: = _
Vbcom. Item ("module1 ")
CritHarmRate
Damageleixin
These columns are merged in JSON format and copied to the properties column of the program table.
This is the planned data table.
This is the data table of the Program (generated by clicking the control page button)
It took about two hours to write the information including VBA query. I have to say that the syntax of VBA
Option Explicit ' VBA Script that gets info on the currently selected email using propertyaccessor and various syntaxes ' (s EE other scripts at http://www. Gregthatcher.com-Ways to get mail properties) ' property Tag Syntax looks like this http://schemas.microsoft.com /mapi/proptag/0x0005000b ' property Tag Syntax are used for Outlook ' Properties ' (defined by
Original source: http://www.cnblogs.com/Charltsing/p/EncryptVBACode.htmlVBA code encryption is a commonplace issue, and since my VBA dumper was released, any encryption at the office level has lost its meaning. So, many people began to move to the VB package or upgrade to Vsto,delphi and other languages. However, for the vast majority of Vbaer, the problem of re-learning a language is far more than the benefits of developing
Iamlasong
VBA programming achieves random output without repeating. The random function in VBA is RND, and the random function in worksheet is Rand. The difference between the word and can be remembered. The RND value range is [0, 1). It indicates a random number between 0 and 1, which contains 0, but does not contain 1.
1. Usage
Syntax: RND [(number)]If the valu
Advanced Knowledge points1. SQL query Statements and ADO2. Regular expressions and net catch3. Forms and Controls4. API class module and so onSorosayLinks: https://www.zhihu.com/question/26078625/answer/132542043Source: KnowCopyright belongs to the author. Commercial reprint please contact the author for authorization, non-commercial reprint please specify the source.1 hoursFamiliarity with data types, variables, constants, and operators1. Understand what data types
possible13.9.2 minimize the use of Object Reference 37613.9.3 efficient use of range object 37713.9.4 reduce the activation and selection of objects by 37813.9.5 disable screen update 37913.9.6 improve the efficiency of key code by 37913.9.7 Calculation of code execution time: 379Part 1 appendixAppendix a vba naming rules 382A.1 variables, constants, custom types, and enumeration 382A.2 process and function 383A.3 module, class module, and user form
Original source: http://www.cnblogs.com/Charltsing/p/unviewable.htmlqq:564955427Email: [Email protected]I was asked to unviewable+ VBA to protect the VBA code can be cracked, so I went to the author's website to see a bit (URL).This tool protects the VBA code fairly well, but there are still fatal problems that can be easily exported.Part of the code in the expor
Iamlaosonghttp://blog.csdn.net/iamlaosong/article/details/18458253The function that takes the current date in VBA is date, the function of the current time is now, and the current date and time are now. the functions for converting dates to years and days are: year, Month, day, values that can be taken with date or now. The functions of time conversion to minutes and seconds are: Hour, Minute, Second, the value that the parameter can be taken out
should follow3.1 Grammar is the rule that should be followed when language is expressed3.1.1 Do not understand grammar, the expression will be wrong3.1.2 As a programming language, VBA also has syntax3.1.3 Don't worry, VBA syntax is not complicated3.2 Data and data types in VBA3.2.1 In Excel, data is the information stored in a cell3.2.2 data types, which are co
VBA is a non-mainstream language, and there may not be many people involved. Here I will talk about some superficial views on VBA.
VBA is short for Visual Basic for Application. It has two major features: 1. It is a script language (interpretation and execution) that uses the BASIC syntax ), the other is that it is emb
Memo by:1, VBA to take the number of columns:For example, how many columns are used for the second row: Cells (2, Columns.count). End (xlToLeft). Column: Explanation: Mainly the end method, which is illustrated in VBA: Returns a Range object that represents the cell that contains the end of the area of the source range. is equivalent to pressing the end+ up ARROW, end+ down ARROW, end+ left arrow, or end+ r
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.